home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / tableversions.sql < prev    next >
Text File  |  2000-05-12  |  825b  |  20 lines

  1. /* RCSVER $Id: tableversions.sql,v 1.2 1999-02-24 16:20:49-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        tableversions.sql
  6. * Date:        02/16/1998
  7. * memo:        Randy Wood
  8. * Description:    Create the tableversions table. This table maintains a
  9. *        version number for every farebox configuration file,
  10. *         and keeps track of the number of coloumns of each.
  11. * Changes:
  12. ************************************************************************* */
  13. CREATE TABLE tableversions
  14. (
  15.     tablename    VARCHAR2(30),    /* Name of config file ('CDISP.FBC') */
  16.     version        NUMBER(38),    /* Version of file */
  17.     num_cols    NUMBER(38),    /* Number of columns */
  18.     CONSTRAINT pk_tableversions PRIMARY KEY (tablename)
  19. );
  20.